1
I have multiple classes in my C# project
dir1
    -folder1
          -file1.cs
          -file2.cs
    -folder2
    -file3.cs
dir2
   -folder3
         -file.cs

如何在 doxygen 中维护这个文件夹结构???
因为在 Doxygen 中,它列出了同一文件夹“类”下的所有类
我已经浏览了所有文档但没有找到任何东西

4

2 回答 2

0

通常可以在文件参考中找到文件夹结构。看这张图的红框: Doxygen HTML 输出:文件参考页

于 2015-09-02T07:42:58.877 回答
0

使用 @dir 命令记录目录:

/**
 * @dir src
 * This is the top level directory of the source files.
 * Here a more detailed description of the directory.
 */
于 2015-09-03T13:51:28.870 回答