我正在使用Doxygen来记录一些Objective-C代码。我在类定义之外声明了一些常量。我想让这些出现在课堂文档中。我怎样才能制造含氧气? (使用\文件只在单独的文档页面中显示它们。)
#import blah blah
/**
* This is my constant
*/
extern NSString*constant someConstant;
/**
* More documentation
*/
@interface MyClass : NSObject <NSCoding> {
//etc
}
答案 0 :(得分:5)
尝试使用\ memberof doxygen命令。 See.
#import blah blah
/**
* \memberof MyClass
* This is my constant
*/
extern NSString*constant someConstant;
/**
* More documentation
*/
@interface MyClass : NSObject <NSCoding> {
//etc
}