我想限制我的源文件中的行長度爲80個字符。將Doxygen函數鏈接到具有長原型的函數時,這是一個問題。因爲參數的長類型名稱。 在生成文檔時,Doxygen是否可以忽略註釋中的換行符(即換行符)? 這裏是一個MWE: 我有以下文件命名爲mwe.cpp /**
* \file mwe.cpp
*
* \details
* MWE::MWE(int a, int b, int c)
* MWE
運行的doxygen爲 namespace BV
{
namespace Data
{
typedef struct Station {
uint offsetId; //! The ID of a station is generated by adding an offset to a base (example: 1000)
uint id; //!
Doxygen的正常工作與下面的簡單的例子: /** \file */
/// This is an integer
typedef int myInteger;
/// This is the same as \ref myInteger
typedef myInteger myOtherInteger;
但它不會解決參考myInteger如果我把它變成一個命名空間。 /** \