Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一种“通用”方法可以在 Doxygen 中为不同范围的模板值添加行为列表?
例如:
template<int Var> class MyClass{};
我将描述 Var < 0、Var = 0 和 Var > 0 的行为。如何清楚地呈现?
您可以使用tparam记录模板参数。
如果它不适合那里,我可能会使用par命令来描述类文档中的行为。