我正在使用Doxygen来记录我的一些代码。我有一个使用默认参数的函数,它在标题中指定,即:。
unsigned int CountColumns(const std::string&,const std::string& delim="");
和源文件中的相应实现为:
unsigned int CountColumns(const string& input,const string& delim)
{
...
}
当我使用Doxygen生成我的文档时,CountColumns有两个条目 - 一个包含默认值,另一个没有:
unsigned int CountColumns (const string &input, const string &delim)
unsigned int CountColumns (const std::string &, const std::string &delim="")
如何避免这种情况?我不希望多个函数定义使我的文档变得混乱。
编辑:正如我在下面的回答中提到的,问题似乎是由于头文件在参数中使用'std :: string',而源文件包含'using std: :string'语句然后在参数中使用'string'。如果我改变函数定义以在源文件中使用'std :: string',Doxygen会将其识别为与标题中声明的函数相同。答案 0 :(得分:5)
我建议在配置文件中将BUILTIN_STL_SUPPORT
设置为YES
,因此doxygen knows string是std命名空间中定义的类。
答案 1 :(得分:2)
问题似乎是由于头文件在参数中使用'std :: string'这一事实,而源文件包含'using std :: string'语句,然后在参数中使用'string' 。如果我改变函数定义以在源文件中使用'std :: string',Doxygen会将其识别为与标题中声明的函数相同。
虽然不理想,但它是一种有效且不太笨重的解决方案。
答案 2 :(得分:0)
那么从文档中排除额外的功能呢?
这来自doxygen FAQ,
“我如何让doxygen忽略一些代码片段?
新的最简单的方法是在开始时添加一个带有\cond
命令的注释块,并在应该忽略的代码段末尾添加一个带有\endcond
命令的注释块。当然,这应该在同一个文件中。
但你也可以使用doxygen的预处理器:如果你把
#ifndef DOXYGEN_SHOULD_SKIP_THIS /* code that must be skipped by Doxygen */ #endif /* DOXYGEN_SHOULD_SKIP_THIS */ around the blocks that should be hidden and put: PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS in the config file then all blocks should be skipped by Doxygen as long as
PREPROCESSING = YES。 “