我有一个 main.cpp,其中包含一个结构、一些全局常量和一个主函数。
我运行了 doxygen,我在输出 index.html 中获得的唯一文档是我的结构。
我希望 doxygen 也将我的 main() 记录到 index.html 文件中。我做错了什么?
/// Definition of Pi
const auto Pi = 3.141592653589793238462643383279502884197169399;
/// \struct myStruc
/// \brief myStruc description
///
struct myStruc
{
/// Comments inside myStruc
};
/// \file
/// \brief Main function
/// \param argc An integer argument count of the command line arguments
/// \param argv An argument vector of the command line arguments
/// \return an integer 0 upon exit success
int main(int argc, char** argv)
{
/// Comments I would like to be documented in as well
return 0;
}