Doxygen 文档应该放在包括警卫之前还是之后;在命名空间之前或内部?
假设标头包含单个类 ( context
) 的声明,这就是我在此处记录的内容。
#ifndef CONTEXT_HPP
#define CONTEXT_HPP
#include <string>
/**
* The application context interface.
*/
namespace test {
class context { ... };
}
Doxygen 文档应该放在包括警卫之前还是之后;在命名空间之前或内部?
假设标头包含单个类 ( context
) 的声明,这就是我在此处记录的内容。
#ifndef CONTEXT_HPP
#define CONTEXT_HPP
#include <string>
/**
* The application context interface.
*/
namespace test {
class context { ... };
}