Other Documented Items
FUNCTIONS
- double function(double arg) ;
-
A non-member function
This feature allows docification
of plain-C code as well as C++
GLOBALS
- int global1;
-
A Global variable
This feature allows docification
of plain-C code as well as C++
- int global2;
-
Another global variable
- enum { lions=3,tigers,bears } ;
-
A global enumeration
- union JaneplusJohn global3, global4;
-
Two globally scoped instances of JaneplusJohn
TYPEDEFS
- int mytype;
-
A type declaration
MACROS
- ABS(x) : (x>=0 ? x : -x)
-
A Macro