The following sections document comment directives that are recognized by the standard TypeAccess GUI and script-language interfaces. These must be placed in comments immediately following the definition of that which the apply to. Thus, an object directive should appear as
class whatever : public something { // #IGNORE comment goes here
for members and methods, it should be as follows:
class whatever : public something { // #IGNORE comment goes here int member_1; // #HIDDEN comment goes here float member_2; // #READ_ONLY or here float get_real(); /* #USE_RVAL note that multi-line old-fashioned c-style comments are legal too! */