XDC文档文件中的参考手册

Reference manual from XDC documentation files?

本文关键字:参考 文档 文件 XDC      更新时间:2023-10-16

我正在创建一个C++库,我还需要为它制作一本参考手册。我使用visualstudio的文档工具XDCMake创建xml文件,然后intellisense可以使用这些文件。

有没有办法从这些文件中创建类似javadoc的web或文本?

编辑:

输出看起来像这样:

<doc>
    <assembly> "ARpp" </assembly>
    <members>
        <member name="T:ARpp.RegionDetecter">
            <summary>
                This class extracts information about dark areas in an image which can then be processed by other modules.
            </summary>
        </member>
        <member name="M:ARpp.RegionDetecter.#ctor">
            <summary>
                Initializes a new instance of the <see cref="T:ARpp.RegionDetecter"/>class.
            </summary>
        </member>
        <!--More members...-->
    </members>
</doc>

任何链接,教程帮助将不胜感激。

查看Doxygen或Sandcastle帮助文件生成器。