My Project
test.h
1 
2 
3 // If this forward declaration is uncommented, it doxygen will render CxxThing2's
4 // functions like Objective C methods.
5 @class ObjcThing;
6 
8 class CxxThing2 {
9  public:
11  int foo(double x);
13  int bar(ObjcThing *ocThing);
14 };
15 
int foo(double x)
int bar(ObjcThing *ocThing)
Definition: test.h:8