【发布时间】:2014-11-04 03:25:33
【问题描述】:
我正在使用 Doxygen 来记录一些用 C# 编写的大型项目。不应更改这些项目中的现有文档。
有什么方法可以扩展现有的文档并在单独的文件中为某些类或方法提供一些 doxygen 命令?
例如,假设有 ViewModel.cs 类,它的文档记录如下:
/// <summary>
/// Defines a ViewModel that can be bound to a TreeList control.
/// </summary>
public abstract class ViewModel : IViewModel
{
/// <summary>
/// Gets the root elements to be displayed in the TreeList.
/// </summary>
public ObservableCollection<ITreeNode> Elements { get; protected set; }
}
有没有办法创建一个单独的文件 (.dox),该文件将链接到该类并扩展现有文档?例如。使用 \ingroup 命令将类分组到特定模块中。
【问题讨论】: