我有一个.dox文件,希望插入一些在实际文档中不会显示的注释。
尝试只使用//,Horever,当我尝试时,所有的文本ir都删除了。
/// \defgroup desc_polyhedra Polyhedra
///
// If you want to prevent that a word that corresponds to a
// documented class is replaced by a link you should put a % in
// front of the word.
///
/// \section Polyhedron
///
/// A polyhedron is a solid in three dimensions with flat faces,
/// straight edges and sharp corners or vertices.
///
/// Amongst the many examples of polyhedra, the Cuboid and
/// Prismatoid structures will be considered in more detail.
/// Here is a brief summary of cuboids and prismatoids.发布于 2014-11-24 18:08:48
这里有几个选择:
\cond . \endcond包围你想单独留下的文本// --即不要将//混合在///部分的中间。您所看到的是,第一个//结束doxygen注释块,因此它将停止输出。/// <--! A comment is here -->中使用HTML注释语法https://stackoverflow.com/questions/27108506
复制相似问题