我很好奇是否可以生成一个关键字列表,如果你愿意的话,一个索引,以便 doxygen 参考?我说的不是类列表等,而是用作索引的特定单词。
问问题
494 次
2 回答
1
于 2013-02-03T14:01:34.923 回答
0
有了这个,您可以为每个关键字创建一个页面。一个例子,他们已经为:
\xrefitem todo "Todo" "Todo List"
您可以在 Doxygen 文件中添加其他别名:
ALIASES += "reminder=\xrefitem reminders \"Reminder\" \"Reminders\""
然后在代码中您可以执行以下操作:
\reminder Add the cool feature here.
你会得到一个提醒页面,上面有提醒列表。
于 2014-01-23T22:24:27.657 回答